home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / parallel-C disk ^1.adf / LIMITS.H < prev    next >
Text File  |  1997-12-31  |  414b  |  15 lines

  1. /***   LIMITS.H
  2.  ***
  3.  ***   Limits definitions file - see ANSI 4.1.3
  4.  ***
  5.  ***   Rev 001  14-Jan-88  JF     Doesn't contain all the limits defined
  6.  ***                              in ANSI 2.2.4.2 - just enough for
  7.  ***                              strtol() and strtoul() [SCR/87/462]
  8.  ***
  9.  ***/
  10.  
  11. #define LONG_MAX    (0x7FFFFFFFL)
  12. #define LONG_MIN    (0x80000000L)
  13. #define ULONG_MAX   (0xFFFFFFFFL)
  14.  
  15.